home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 12
/
Cream of the Crop 12 (Part II)
/
Cream of the Crop 12 (Part II).iso
/
OS2
/
GNUSUTIL.ZIP
/
src
/
false.sh
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Linux/UNIX/POSIX Shell Script
|
1994-04-20
|
323 b
|
22 lines
#!/bin/sh
usage="Usage: $0 [OPTION]...
--help display this help and exit
--version output version information and exit"
case $# in
1 )
case "z${1}" in
z--help )
echo "$usage"; exit 0 ;;
z--version )
echo "false - @VERSION@"; exit 0 ;;
* ) ;;
esac
;;
* ) ;;
esac
exit 1